home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / SM Notepad Options 1.xpl < prev    next >
Text File  |  2001-03-17  |  1KB  |  60 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="3"
  4. "UIPATH"="Program Options\Built in Windows Apps\Notepad"
  5. "NAME"="Notepad Options"
  6. "VERSION"="1.37a"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Enable word-wrap by default"
  9. "TEXT 2"="Set default font style: Strike-Through"
  10. "TEXT 3"="Set default font style: Underline"
  11. "DESCRIPTION 1"="Some options for Notepad."
  12. "AUTHOR"="SΘbastien MAURICE"
  13. "COPYRIGHT"="Copyright ⌐ SΘbastien MAURICE - All Rights Reserved"
  14. "COMMENT 1"="... Used with permission "
  15.  
  16.  
  17. sV1="HKCU\Software\Microsoft\Notepad\fWrap"
  18. sV2="HKCU\Software\Microsoft\Notepad\lfStrikeOut"
  19. sV3="HKCU\Software\Microsoft\Notepad\lfUnderline"
  20.  
  21. Sub Plugin_Initialize 
  22.  i=RegReadValue(sV1)
  23.  if i=1 then SetUIElement 1,true
  24. End Sub
  25.  
  26.  
  27. Sub Plugin_CheckData(ElementIndex)
  28. End Sub
  29.  
  30.  
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  if GetUIElement(1)=true then
  34.     Call RegWriteValue(sV1,"1",2)
  35.  else
  36.     Call RegWriteValue(sV1,"0",2)
  37.  end if
  38.  
  39.  if GetUIElement(2)=true then
  40.     Call RegWriteValue(sV2,"1",2)
  41.  else
  42.     Call RegWriteValue(sV2,"0",2)
  43.  end if
  44.  
  45.  if GetUIElement(3)=true then
  46.     Call RegWriteValue(sV3,"1",2)
  47.  else
  48.     Call RegWriteValue(sV3,"0",2)
  49.  end if
  50.  
  51.  
  52. End Sub
  53.  
  54.  
  55. Sub Plugin_Terminate 
  56. End Sub
  57.  
  58.  
  59.  
  60.